Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Commit e8fa92950d5ca723fedf52e366269e51b93cf4b3


Parents : ab65327
Author : Mark Qvist <bc7291552be7a58f361522990465165c>
Date : 2026-05-05T01:18:07+02:00

Fixed missing unquote

Changes

1 files changed, 1 insertions(+), 0 deletions(-)


Diff

diff --git a/RNS/Utilities/rngit/pages.py b/RNS/Utilities/rngit/pages.py
index cd1231fc..e7ec68a2 100644
--- a/RNS/Utilities/rngit/pages.py
+++ b/RNS/Utilities/rngit/pages.py
@@ -1279,6 +1279,7 @@ class NomadNetworkNode():
repo_name = data.get("var_r", "") if data else ""
tag = data.get("var_t", "") if data else ""
artifact = data.get("var_a", "") if data else ""
+ artifact = urllib.parse.unquote_plus(artifact)
if "/" in artifact: return None
if not group_name or not repo_name or not tag or not artifact: None


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────